home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / lib / mntlib44.zoo / mntlib / mkfifo.c < prev    next >
C/C++ Source or Header  |  1993-10-12  |  207b  |  16 lines

  1. /* fake mkfifo -- this always fails */
  2.  
  3. #include <errno.h>
  4. #include <support.h>
  5. #include <types.h>
  6. #include <stat.h>
  7.  
  8. int
  9. mkfifo(path, mode)
  10.     const char *path;
  11.     mode_t mode;
  12. {
  13.     errno = EINVAL;
  14.     return -1;
  15. }
  16.